home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / IMS16.ZIP / RMDEMOSU.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-11-27  |  627 b   |  37 lines

  1. unit rmdemosu;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TSetupDlg = class(TForm)
  10.     Label1: TLabel;
  11.     ServerEdit: TEdit;
  12.     Label2: TLabel;
  13.     UserNameEdit: TEdit;
  14.     Label3: TLabel;
  15.     PasswordEdit: TEdit;
  16.     Label4: TLabel;
  17.     LogFileNameEdit: TEdit;
  18.     AttDirEdit: TEdit;
  19.     Label5: TLabel;
  20.     OKButton: TButton;
  21.     CancelButton: TButton;
  22.     Bevel1: TBevel;
  23.   private
  24.     { Private declarations }
  25.   public
  26.     { Public declarations }
  27.   end;
  28.  
  29. var
  30.   SetupDlg: TSetupDlg;
  31.  
  32. implementation
  33.  
  34. {$R *.DFM}
  35.  
  36. end.
  37.